home *** CD-ROM | disk | FTP | other *** search
Borland Project Group | 2001-02-28 | 1017 b | 37 lines |
- #------------------------------------------------------------------------------
- VERSION = BWS.01
- #------------------------------------------------------------------------------
- !ifndef ROOT
- ROOT = $(MAKEDIR)\..
- !endif
- #------------------------------------------------------------------------------
- MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
- DCC = $(ROOT)\bin\dcc32.exe $**
- BRCC = $(ROOT)\bin\brcc32.exe $**
- #------------------------------------------------------------------------------
- PROJECTS = FileGroupApp.exe FileGroupAdmin.exe Ping.exe Pong.exe Send.exe \
- Receive.exe
- #------------------------------------------------------------------------------
- default: $(PROJECTS)
- #------------------------------------------------------------------------------
-
- FileGroupApp.exe: FileGroupApp.dpr
- $(DCC)
-
- FileGroupAdmin.exe: FileGroupAdmin.dpr
- $(DCC)
-
- Ping.exe: Ping.dpr
- $(DCC)
-
- Pong.exe: Pong.dpr
- $(DCC)
-
- Send.exe: Send.dpr
- $(DCC)
-
- Receive.exe: Receive.dpr
- $(DCC)
-
-
-